body {
      margin: 0;
      padding: 0;
      font-family: 'Exo', sans-serif;
      color: white;
      text-align: center;

     }

    /* leichter Kontrast-Overlay für bessere Lesbarkeit */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      z-index: -1;
    }

    header {
      background-color: rgba(0, 0, 0, 0.1);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: bold;
    }

    nav {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    nav a {
      color: #ffd700;
      text-decoration: none;
      font-size: 1rem;
    }

    nav a:hover {
      text-decoration: underline;
    }

    /* zweite Header-Zeile */
    .title-header {
      flex-direction: column;
      text-align: center;
    }

        h1 {
      margin: 0;
      font-size: clamp(2.5rem, 8vw, 5rem);
    }

    h2 {
      margin: 0.5rem 0 2rem 0;
      font-size: clamp(1.8rem, 6vw, 3rem);
    }

    main {
      padding: 2rem;
      display: flex;
      justify-content: center;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      max-width: 1200px;
      width: 100%;
      text-align: left;
    }

    ul li a {
      color: #ffffff;
      text-decoration: none;
      font-size: clamp(1rem, 4.5vw, 1.5rem);
      font-weight: bold;
    }

    .entry-blue a {
      color: #1702fa;
    }

    .entry-green a {
      color: #91fcbe;
    }

    .entry-magenta a {
      color: #f1fe35;
    }
    .entry-pink a {
      color: #ff78e2;
    }

    ul li a:hover {
      text-decoration: underline;
    }

    /* Vorschau-Stil (nur Desktop sinnvoll) */
    .preview {
      position: absolute;
      display: none;
      border: 1px solid #ccc;
      background: #fff;
      padding: 5px;
      z-index: 10;
    }

    .preview img {
      width: 320px;
      height: 180px;
      display: block;
    }

    /* Mobile Optimierungen */
    @media (max-width: 600px) {
      header {
        flex-direction: column;
        gap: 0.5rem;
      }

      nav {
        justify-content: center;
      }
    }